home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / uucosr10 / makefile < prev    next >
Makefile  |  1991-05-25  |  233b  |  9 lines

  1. TARGET=uucoder.prg
  2. OBJECTS=uucoder.o event.o encode.o decode.o fsel.o
  3. HEADERS=uucoder.h
  4. LIBRARIES=\lib\aesfast.a
  5. CFLAGS=-v -O
  6.  
  7. $(TARGET) : $(OBJECTS) $(LIBRARIES) $(HEADERS)
  8.     cc $(CFLAGS) -o $(TARGET) $(OBJECTS) $(LIBRARIES)
  9.